home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / textual / cawf / !man / ReadME < prev   
Text File  |  1995-10-07  |  3KB  |  98 lines

  1. CAWF a.k.a. NROFF
  2. -----------------
  3.  
  4.  
  5. This is a quick and dirty port of 'cawf' that came from Simtel20
  6. This implements an 'nroff' and 'man' function that runs under RISCOS.
  7.  
  8. Two invocations are possible 
  9.  
  10. Once the filer has seen !man then any files in the !man.1 directory 
  11. can be read by typing 
  12.  
  13. man subject
  14.  
  15. Or double clicking any file of type ManPages (100)  
  16.  
  17. The man pages are in subdirectory '1'
  18.  
  19.  
  20. CHANGING FILE TYPE USED
  21. -----------------------
  22.  
  23. If you want to alter the file type, the !sprites file and the !boot 
  24. file need changing to refer to the correct file type. 
  25. To change to file type XXX
  26.  
  27.  
  28. The Boot file is :
  29.  
  30. set Cawf$path <obey$dir>.
  31. iconsprites cawf:!Sprites
  32. set alias$man run cawf:man %*0
  33. set file$type_100 ManPages
  34. set alias$@RunType_100 taskwindow -quit "cawf:cawf -man -dNONE %%0"
  35.  
  36.  
  37.  
  38. Change the two 100's i to XXX n this file
  39. and rename the sprites file_100 and small_100 to file_XXX and small_XXX 
  40. in !Sprites.
  41.  
  42.  
  43. OTHER USES
  44. ----------
  45.  
  46. The 'nroff'  program itself is called 'cawf' (see the cawf ManPages file)
  47. and can be invoked independently.
  48.  
  49.  
  50. Then it will also format to 1st word plus files 
  51.  
  52. (this prints via Acorn drivers )
  53. cawf -man -dacorn manfile > printer:
  54.  
  55. Or: 
  56.  
  57. cawf -man -dacorn manfile > FWP_file
  58.  
  59. Will produce bold and underline in a FirstWord Plus File (for e.g. Ovation)
  60.  
  61. Look in cawf:lib.device/cf on how to add devices 
  62.  
  63.  
  64. CREDITS
  65. -------
  66. For RISCOS port:
  67.  
  68. Mike James <mike@hamble.demon.co.uk>
  69.  
  70. Thats me. Full of Pouilly-Fumé and happy for it.
  71.  
  72. For cawf:
  73.  
  74. /*
  75.  *    Copyright (c) 1991 Purdue University Research Foundation,
  76.  *    West Lafayette, Indiana 47907.  All rights reserved.
  77.  *
  78.  *    Written by Victor A. Abell <abe@mace.cc.purdue.edu>,  Purdue
  79.  *    University Computing Center.  Not derived from licensed software;
  80.  *    derived from awf(1) by Henry Spencer of the University of Toronto.
  81.  *
  82.  *    Permission is granted to anyone to use this software for any
  83.  *    purpose on any computer system, and to alter it and redistribute
  84.  *    it freely, subject to the following restrictions:
  85.  *
  86.  *    1. The author is not responsible for any consequences of use of
  87.  *       this software, even if they arise from flaws in it.
  88.  *
  89.  *    2. The origin of this software must not be misrepresented, either
  90.  *       by explicit claim or by omission.  Credits must appear in the
  91.  *       documentation.
  92.  *
  93.  *    3. Altered versions must be plainly marked as such, and must not
  94.  *       be misrepresented as being the original software.  Credits must
  95.  *       appear in the documentation.
  96.  *
  97.  *    4. This notice may not be removed or altered.
  98.